home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_367 / hyperdialer / install < prev    next >
Text File  |  1992-05-06  |  717b  |  26 lines

  1. echo
  2. echo "HyperDialer Installation"
  3. echo "------------------------------------------------------------------"
  4. echo "This script will copy HyperDialer into your C: directory and"
  5. echo "the 2 support files into your S: directory, as well as the"
  6. echo "library file in LIBS:"
  7. echo 
  8. echo "You may abort now or continue.  The DeInstall program will "
  9. echo "remove this program if you later decide you do not wish to "
  10. echo "have it installed. "
  11. echo 
  12. ask "Do you wish to continue (Y/N) " 
  13.  
  14.  
  15. IF WARN
  16.     copy HDial        C:    QUIET
  17.     copy HDial.Config S:    QUIET
  18.     copy HDial.Phones S:    QUIET
  19.     copy Req.library  LIBS: QUIET
  20.  
  21.     echo "HyperDialer Installation Complete."
  22. ELSE
  23.     echo "HyperDialer Installation Aborted."
  24. ENDIF
  25.  
  26.